@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  list-style: none;
  box-sizing: border-box;
}

body {
  color: #333;
  font-size: 14px;
  font-family: 'PingFang', 'PingFang SC', 'syht', 'Microsoft YaHei', '黑体', '宋体', sans-serif;
}

div {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

body::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 15px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 15px;
  scrollbar-arrow-color: red;
}

body::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 15px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.2);
  scrollbar-arrow-color: red;
}

body::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
}

.body {
  overflow: hidden;
  width: 100%;
}
